home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 July / ENTER.ISO / files / setup_mutantstorm_demo.exe / {app} / script / level110.lua < prev    next >
Encoding:
Text File  |  2003-03-11  |  1.2 KB  |  52 lines

  1. cur_level_num = 110
  2.  
  3. dofile("everything.lua")
  4.  
  5. c_add_a_path("edge-path", 0, 90 )
  6.  
  7. local path = {
  8. 28.9815,  0.719273,  0,
  9. 26.7447,  -10.5257,  0,
  10. 20.375,  -20.0588,  0,
  11. 10.8419,  -26.4286,  0,
  12. -0.403126,  -28.6654,  0,
  13. -11.6481,  -26.4286,  0,
  14. -21.1812,  -20.0588,  0,
  15. -27.551,  -10.5257,  0,
  16. -29.7878,  0.719276,  0,
  17. -27.551,  11.9643,  0,
  18. -21.1812,  21.4974,  0,
  19. -11.6481,  27.8671,  0,
  20. -0.403121,  30.1039,  0,
  21. 10.8419,  27.8671,  0,
  22. 20.375,  21.4973,  0,
  23. 26.7447,  11.9643,  0,
  24. }
  25. c_add_a_path("pathfly-path", 0, 100, 100, 0, 0, 0, path)
  26.  
  27. function LEVEL_start()
  28.         ticker = 0
  29.         pylon_start("cross-1",90.0)
  30.         floor_start_random()
  31.         player_start( -0.102656 , 35.4733 , 0.0 )
  32. end
  33.  
  34. function LEVEL_gameloop()
  35.         everying_gameloop()
  36.  
  37. if ticker == 500 then
  38. actor_plopper( "chunk", 1,0,0,     -0.73268,-0.73268,1.358,1.358,    -90.0,264.6 )
  39. end
  40.  
  41. if ticker == 500 then
  42. actor_plopper( "pathfly_tiny", 40,0,13,     -57.4179,-43.3133,-6.17011,7.10415,    -90.0,0.0,    "pathfly-path" )
  43. end
  44.  
  45. if ticker == 500 then
  46. actor_plopper( "pathfly_tiny", 40,0,13,     42.1498,56.2543,-6.67175,6.60251,    -90.0,0.0,    "pathfly-path" )
  47. c_no_more_beasties_to_come()
  48. end
  49.  
  50. end
  51.  
  52.